home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / cprog / c_tutor.lha / C_Tutor / RECURSON.C < prev    next >
Encoding:
C/C++ Source or Header  |  1985-02-05  |  235 b   |  18 lines

  1. main()
  2. {
  3. int index;
  4.  
  5.    index = 8;
  6.    count_dn(index);
  7. }
  8.  
  9. count_dn(count)
  10. int count;
  11. {
  12.    count--;
  13.    printf("The value of the count is %d\n",count);
  14.    if (count > 0)
  15.       count_dn(count);
  16.    printf("Now the count is %d\n",count);
  17. }
  18.